Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/index.html
386 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Maze Game</title>
<link rel="stylesheet" href="./st
script.js /cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/script.js
215 Views
0 Comments
function rand(max) {
return Math.floor(Math.random() * max);
}

function shuffle(a) {
for (let i = a.length - 1; i > 0; i--)
style.css /cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/style.css
164 Views
0 Comments
html,
body {
width: 100vw;
height: 100vh;
position: fixed;
padding: 0;
margin: 0;
top: 0;